+Sat Nov 7 21:55:00 PST 1998 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkclist.c: check if column[i].button is valid before calling
+ gtk_widget_intersect on it in gtk_clist_draw
+
+ * gtk/gtkdnd.c: removed unused variable empty_bits
+
+ * gtk/gtkrc.c: we should use gslist_* functions with GSLists...
+
+ * gtk/gtktypeutils.[ch]: makes more send for gtk_type_is_a to return
+ a boolean (thanks to Elrond for noticing this)
+
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
+Sat Nov 7 21:55:00 PST 1998 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkclist.c: check if column[i].button is valid before calling
+ gtk_widget_intersect on it in gtk_clist_draw
+
+ * gtk/gtkdnd.c: removed unused variable empty_bits
+
+ * gtk/gtkrc.c: we should use gslist_* functions with GSLists...
+
+ * gtk/gtktypeutils.[ch]: makes more send for gtk_type_is_a to return
+ a boolean (thanks to Elrond for noticing this)
+
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
+Sat Nov 7 21:55:00 PST 1998 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkclist.c: check if column[i].button is valid before calling
+ gtk_widget_intersect on it in gtk_clist_draw
+
+ * gtk/gtkdnd.c: removed unused variable empty_bits
+
+ * gtk/gtkrc.c: we should use gslist_* functions with GSLists...
+
+ * gtk/gtktypeutils.[ch]: makes more send for gtk_type_is_a to return
+ a boolean (thanks to Elrond for noticing this)
+
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
+Sat Nov 7 21:55:00 PST 1998 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkclist.c: check if column[i].button is valid before calling
+ gtk_widget_intersect on it in gtk_clist_draw
+
+ * gtk/gtkdnd.c: removed unused variable empty_bits
+
+ * gtk/gtkrc.c: we should use gslist_* functions with GSLists...
+
+ * gtk/gtktypeutils.[ch]: makes more send for gtk_type_is_a to return
+ a boolean (thanks to Elrond for noticing this)
+
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
+Sat Nov 7 21:55:00 PST 1998 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkclist.c: check if column[i].button is valid before calling
+ gtk_widget_intersect on it in gtk_clist_draw
+
+ * gtk/gtkdnd.c: removed unused variable empty_bits
+
+ * gtk/gtkrc.c: we should use gslist_* functions with GSLists...
+
+ * gtk/gtktypeutils.[ch]: makes more send for gtk_type_is_a to return
+ a boolean (thanks to Elrond for noticing this)
+
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
+Sat Nov 7 21:55:00 PST 1998 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkclist.c: check if column[i].button is valid before calling
+ gtk_widget_intersect on it in gtk_clist_draw
+
+ * gtk/gtkdnd.c: removed unused variable empty_bits
+
+ * gtk/gtkrc.c: we should use gslist_* functions with GSLists...
+
+ * gtk/gtktypeutils.[ch]: makes more send for gtk_type_is_a to return
+ a boolean (thanks to Elrond for noticing this)
+
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
+Sat Nov 7 21:55:00 PST 1998 Manish Singh <yosh@gimp.org>
+
+ * gtk/gtkclist.c: check if column[i].button is valid before calling
+ gtk_widget_intersect on it in gtk_clist_draw
+
+ * gtk/gtkdnd.c: removed unused variable empty_bits
+
+ * gtk/gtkrc.c: we should use gslist_* functions with GSLists...
+
+ * gtk/gtktypeutils.[ch]: makes more send for gtk_type_is_a to return
+ a boolean (thanks to Elrond for noticing this)
+
1998-11-07 Jay Cox <jaycox@earthlink.net>
* gtk/gtkwindow.c: forward declaration for gtk_window_paint
{
if (!clist->column[i].visible)
continue;
- if (gtk_widget_intersect(clist->column[i].button, area, &child_area))
+ if (clist->column[i].button &&
+ gtk_widget_intersect(clist->column[i].button, area, &child_area))
gtk_widget_draw (clist->column[i].button, &child_area);
}
}
0x0f, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x0f, 0x00,
0x0f, 0x00, 0x0f, 0x00, 0x07, 0x00, 0x07, 0x00, };
-static char empty_bits[] = {
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, };
-
#define CURSOR_WIDTH 16
#define CURSOR_HEIGHT 16
rc_style_key_id);
if (widget_rc_style)
- rc_styles = g_list_prepend (rc_styles, widget_rc_style);
+ rc_styles = g_slist_prepend (rc_styles, widget_rc_style);
if (gtk_rc_sets_widget)
{
}
}
-gint
+gboolean
gtk_type_is_a (GtkType type,
GtkType is_a_type)
{
void gtk_type_describe_heritage (GtkType type);
void gtk_type_describe_tree (GtkType type,
gboolean show_size);
-gint gtk_type_is_a (GtkType type,
+gboolean gtk_type_is_a (GtkType type,
GtkType is_a_type);
GtkTypeObject* gtk_type_check_object_cast (GtkTypeObject *type_object,
GtkType cast_type);
GtkWidget *pixmapwid;
GdkPixmap *pixmap;
GdkBitmap *mask;
- GtkStyle *style;
if (!window)
{
GtkWidget *pixmapwid;
GdkPixmap *pixmap;
GdkBitmap *mask;
- GtkStyle *style;
if (!window)
{